
/* Example module using GCC */

#include <stdio.h>

#include "module.h"

_kernel_oserror *module_init(const char *cmd_tail, int podule_base, void *pw)
{
  printf("GCC example module initialise\n");

  return NULL;
}


_kernel_oserror *module_final(int fatal, int podule, void *pw)
{
  printf("GCC example module finalise\n");

  return NULL;
}
